/* ===== VIDEO INTRO PERFECTO PARA VIDEO 16:9 ===== */

#intro-video{
  position: relative;
  width: 80%;
  margin: 10px auto 0;
  overflow: hidden;

  border-radius: 87px;

  /* La magia */
  aspect-ratio: 16 / 9;

  /* Limita que no se haga gigante en pantallas enormes */
  max-height: 590px;
}

/* En móvil reducimos el borde */
@media (max-width: 600px){
  #intro-video{
    border-radius: 16px;
    margin-top: 72px;
  }
}

#video-fondo{
  width: 100%;
  height: 100%;

  object-fit: contain;     /* nunca recorta */
  object-position: center;

  background: #000;        /* relleno elegante */
  display: block;
  cursor: pointer;
}
